home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / trial / demon / TURNPIKE.1 / CLASSES.ZIP / sun / NET / WWW / AUTH / Authenticator.class (.txt) next >
Encoding:
Java Class File  |  1997-04-14  |  363 b   |  12 lines

  1. package sun.net.www.auth;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6.  
  7. public abstract class Authenticator {
  8.    public abstract void encrypt(InputStream var1, OutputStream var2) throws IOException;
  9.  
  10.    public abstract void decrypt(InputStream var1, OutputStream var2) throws IOException;
  11. }
  12.